From: John Audia Date: Thu, 16 Oct 2025 12:09:24 +0000 (-0400) Subject: snort3: fix typo preventing vectorscan detection X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=39f829545743390ad3f896a6997097446c0204f0;p=feed%2Fpackages.git snort3: fix typo preventing vectorscan detection Since vectorscan-runtime was dropped in the following commit, need to replace references to it with just vectorscan in order to compile snort3 against it: https://github.com/openwrt/packages/commit/8a3c7a69e649a9a5cbb0a642a661dd480b8583ff Without this change, even having CONFIG_PACKAGE_vectorscan=y in the .config will result in a failure to compile against it, e.g: ... Feature options: DAQ Modules: Dynamic libatomic: User-specified Hyperscan: OFF ... Signed-off-by: John Audia --- diff --git a/net/snort3/Makefile b/net/snort3/Makefile index 5335575e73..58fcee22f6 100644 --- a/net/snort3/Makefile +++ b/net/snort3/Makefile @@ -59,7 +59,7 @@ CMAKE_OPTIONS += \ -DHAVE_LZMA=ON \ -DENABLE_TCMALLOC=$(if $(CONFIG_PACKAGE_gperftools),ON,OFF) \ -DENABLE_HYPERSCAN=$(if $(CONFIG_PACKAGE_vectorscan),ON,OFF) \ - $(if $(CONFIG_PACKAGE_vectorscan-runtime),-DHS_INCLUDE_DIRS=$(STAGING_DIR)/usr/include/hs) + $(if $(CONFIG_PACKAGE_vectorscan),-DHS_INCLUDE_DIRS=$(STAGING_DIR)/usr/include/hs) TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/daq3